home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / Tool Chest / Development Tools & Languages / Dylan Related / Dylan alpha demos / Hello src ƒ / library & module.dylan < prev   
Encoding:
Text File  |  1994-12-13  |  334 b   |  18 lines  |  [TEXT/ttxt]

  1. language: infix-dylan
  2. module: Dylan-user
  3.  
  4. // Copyright © 1994 by Apple Computer, Inc.  All rights reserved.
  5.  
  6. define library hello-library
  7.   use Dylan;
  8.   use mac-toolbox;
  9.   use dylan-framework;
  10.   
  11.   export hello-module;
  12. end library;
  13.  
  14. define module hello-module
  15.   use Apple-Dylan;
  16.   use mac-toolbox;
  17.   use dylan-framework;  
  18. end module;